home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / devClientDev.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  2KB  |  38 lines

  1. /*
  2.  * devClientDev.h --
  3.  *
  4.  *    Declarations for the device used to monitor client state.
  5.  *
  6.  *
  7.  * Copyright 1989 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/devClientDev.h,v 9.2 92/12/13 18:11:55 mgbaker Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _DEVCLIENTDEV
  20. #define _DEVCLIENTDEV
  21.  
  22. /* procedures */
  23. extern ReturnStatus DevClientStateOpen _ARGS_((Fs_Device *devicePtr,
  24.     int useFlags, Fs_NotifyToken data, int *flagsPtr));
  25. extern ReturnStatus DevClientStateClose _ARGS_((Fs_Device *devicePtr,
  26.     int useFlags, int openCount, int writerCount));
  27. extern ReturnStatus DevClientStateRead _ARGS_((Fs_Device *devicePtr,
  28.     Fs_IOParam *readPtr, Fs_IOReply *replyPtr));
  29. extern ReturnStatus DevClientStateIOControl _ARGS_((Fs_Device *devicePtr,
  30.     Fs_IOCParam *ioctlPtr, Fs_IOReply *replyPtr));
  31. extern void Dev_ClientHostUp _ARGS_((int spriteID));
  32. extern void Dev_ClientHostDown _ARGS_((int spriteID));
  33. extern void Dev_ClientStateWakeRecovery _ARGS_((void));
  34.     extern ReturnStatus DevClientStateWrite _ARGS_((Fs_Device *devicePtr,
  35.         Fs_IOParam *writePtr, Fs_IOReply *replyPtr));
  36.  
  37. #endif /* _DEVCLIENTDEV */
  38.